home *** CD-ROM | disk | FTP | other *** search
/ MacSilverWare / macsilverware.iso / Utilities / NumberCrunch 1.41 / Ad for NC II next >
Text File  |  1990-03-13  |  2KB  |  55 lines

  1.  
  2.  
  3.     NUMBERCRUNCH II  is on the way!
  4.  
  5.  
  6. I've been working steadily on a major upgrade to NumberCrunch, which I hope to have done and ready to sell for about $50 or so this summer. (By the way, if anyone out there has a suggestion for a good way for me to market this, I'm all ears...)
  7.  
  8.  
  9.      NumberCrunch II already has (as of 3/90)   
  10. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 
  11.  •  arrays,   for example
  12.          j={2,5,7}  
  13.          x = 1…10@.2          which sets x = {1, 1.2, 1.4, ... 10}
  14.          y  = sin(x)/x            which takes sin(x)/x for each value of x
  15.          y[j]  = {y[2], y[5], y[7]}
  16.  
  17. •  Pascal-like programs, for example
  18.          Function Integrate(theFunc, theMin, theMax, dx)
  19.          var  j
  20.          begin
  21.             j = theMin…theMax@dx     # sets j = to an array
  22.             Integrate = dx* sum(  theFunc(j) )
  23.          end
  24.    ( then if f(x) = x^2,  Integrate(f,1,2,.01) gives  .01*[ 1^2+ 1.01^2 + 1.02^2 +...+ 2^2 ] =  2.35835 )
  25.  
  26. •  complex numbers and functions (sin, cos, exp, etc.) of complex arguments,
  27.  
  28. •  strings    (so that the pascal-like programs can format their output),
  29.  
  30. •   multiple files open and multiple windows per file in the application,
  31.  
  32. •  externally compiled Xcod resources to perform specialized functions (like fast-fourer transforms,)
  33.  
  34. •  command completion,
  35.  
  36.  
  37.       and it will have :    
  38. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  39. •  matrices and higher dimension arrays,
  40.  
  41. • units (kg, m, sec, etc.) 
  42.  
  43. •  spread-sheet like entry of matrices and arrays, or entry from a data file
  44.  
  45. •  better graphics, including vectors and contour plots.
  46.  
  47.  
  48.  
  49.  So keep your eyes out for it. It'll be worth waiting for. (I hope).
  50.  
  51.  
  52.    - Jim Mahoney  3/13/90
  53.  
  54.  
  55.